Purpose
The toLowerCase task converts all the characters of an input string to lowercase. This task does not affect any characters that are already in lowercase.
Potential Use Case
This task returns a new string in which all the uppercase characters are converted. You could potentially use this method if a southbound database required a specific field to have all lowercase characters.
Properties
| Incoming | Type | Description | 
|---|---|---|
| str | String | Required. The string that contains the uppercase characters to convert. | 
| Outgoing | Type | Description | 
|---|---|---|
| lowercaseString | String | A new string that represents strconverted to lowercase characters. | 
Examples
Example 1
In this IAP example:
- The incoming variable for - stris provided by the output of the- NewVariable:myVariablereference task, which is located in another workflow.
- The reference variable provided by the reference task is - value, which would be a string containing uppercase characters (e.g.,- Itential, LLC).
- With this example, the string - valueis converted to lowercase characters and the- lowercaseStringoutput should read as- itential, llc.